/*
 * ROOT VARIABLES
 */
:root {
    --mellis-font: 'Manrope', sans-serif;
    --mellis-font-two: 'Libre Baskerville', serif;
    --mellis-base: #de968d;
    --mellis-black: #27252a;
    --mellis-gray: #89868d;
    --mellis-extra: #fcf5f5;
    --mellis-bdr-color: #f0e8e8;
    --mellis-line-color: #f0e8e8;
    --mellis-white: #ffffff;
    --bs-gutter-x: 30px;
}
:root {
  --mellis-font: 'Manrope', sans-serif;
  --mellis-font-two: 'Libre Baskerville', serif;
  --mellis-font-three: 'Parisienne', cursive;
  --mellis-white: #ffffff;
  --mellis-white-rgb: 255, 255, 255;
  --mellis-base: #de968d;
  --mellis-base-rgb: 222, 150, 141;
  --mellis-black: #27252a;
  --mellis-black-rgb: 39, 37, 42;
  --mellis-extra: #fcf5f5;
  --mellis-extra-rgb: 252, 245, 245;
  --mellis-gray: #89868d;
  --mellis-gray-rgb: 137, 134, 141;
  --mellis-bdr-color: #f0e8e8;
  --mellis-bdr-color-rgb: 240, 232, 232;
  --mellis-letter-spacing: 0.1em
}
body {
    font-family: var(--mellis-font);
    color: var(--mellis-gray);
    /* color: white; */
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    /* background-color: var(--mellis-extra); */
    background-color: white;
    padding: 80px 0;
    margin: 0;
}

a { text-decoration: none; color: inherit; transition: all 500ms ease; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--mellis-font-two);
    font-weight: 400;
    color: var(--mellis-black);
    margin: 0;
}

.row { display: flex; flex-wrap: wrap; margin-right: calc(var(--bs-gutter-x)/-2); margin-left: calc(var(--bs-gutter-x)/-2); justify-content: center; margin-top: 30px; }
@media (min-width: 1200px){ .col-xl-4{flex:0 0 auto;width:33.333333%;max-width:360px;} }
@media (min-width: 992px) and (max-width: 1199px){ .col-lg-4{flex:0 0 auto;width:33.333333%;max-width:340px;} }
@media (min-width: 768px) and (max-width: 991px){ .col-md-6{flex:0 0 auto;width:50%;max-width:330px;} }
@media (max-width: 767px){ .col-sm-12{flex:0 0 auto;width:100%;max-width:320px;} }

.text-center { text-align: center; }
.services-one__tagline { color: var(--mellis-base); font-size: 14px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 5px; text-transform: uppercase; }
.services-one__heading { font-size: 36px; margin-bottom: 40px; }



/* === SERVICE CARD === */
.services-one__single {
    position: relative;
    background-color: var(--mellis-white);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid var(--mellis-bdr-color);
    margin-bottom: 25px;
    padding: 0 15px 20px;
    transition: all 400ms ease;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 470px; /* smaller height */
}
.services-one__single:hover {
    border-color: var(--mellis-base);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
}


/* Floral */
.services-one__floral-bg { position: absolute; width: 50px; height: 50px; background-size: contain; background-repeat: no-repeat; z-index: 1; }
.services-one__floral-top-left { top: -1px; left: -1px; background-image: url('images/floral-top-left.svg'); }
.services-one__floral-top-right { top: -1px; right: -1px; background-image: url('images/floral-top-right.svg'); }

/* === IMAGE & ICON CIRCLES === */
.services-one__image-wrapper {
    position: relative;
    padding-top: 20px;
    margin-bottom: 0;
}

.services-one__image-circle {
    width: 165px;
    height: 165px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--mellis-white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    box-shadow: 0 0 0 8px var(--mellis-white);
}
.services-one__image-circle::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.35); /* transparent black overlay */
    transition: height 0.35s ease;
    z-index: 5;
    border-radius: 50%;
}
.services-one__single:hover .services-one__image-circle::before {
    height: 100%;
}

.services-one__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Merged Icon Circle */
.services-one__icon {
    position: absolute;
    bottom: -15px; /* moved slightly higher into the image */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--mellis-base);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    /* color: var(--mellis-white); */
    color: #fff; /* keep for light icons */
    box-shadow: 0 0 0 8px var(--mellis-white);
    z-index: 6;
      font-size: 24px;
      bottom: -18px;  /* still nicely merged */
}
.step img {
  transition: transform 0.4s ease;
}
.step:hover img {
  transform: scale(1.05);
}
.step:hover .number-badge {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}


/* === TEXT & SPACING === */
.services-one__title {
    font-size: 22px;
    margin-top: 45px; /* good balance after merged icon */
    margin-bottom: 10px;
  
}


.services-one__text {
    margin: 0 auto 20px;
    padding: 0 10px;
    text-align: center;
    line-height: 1.5;
    max-width: 85%;   /* narrower text block → automatic clean wrapping */
    word-wrap: break-word;
    white-space: normal; /* allows wrapping even for long text */
}
.services-one__hr {
    width: 90px;
    border: none;
    border-top: 1px dashed var(--mellis-line-color);
    margin: 0 auto 8px; /* less space below line */
}
/* === CARD WIDTH - MAKE MORE MINIMAL === */
@media (min-width: 1200px) {
    .col-xl-4 {
        flex: 0 0 auto;
        width: 28%;  /* narrower than 33.33% */
        max-width: 320px; /* reduced width */
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 30%;
        max-width: 300px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 45%;
        max-width: 280px;
    }
}

/* === BUTTON === */
.services-one__btn {
    color: var(--mellis-black);
    font-weight: 700;
    padding-bottom: 5px;
    margin-top: auto;
    transition: color 0.3s ease;
}
.services-one__btn i {
    font-size: 14px;
    margin-left: 5px;
    position: relative;
    top: 1px;
    transition: transform 0.3s ease;
}
.services-one__btn:hover { color: var(--mellis-base); }
.services-one__btn:hover i { transform: translateX(3px); }
/* EXTRA SERVICES (hero with checklist) */
.extra-services {
  position: relative;
  /* background: url('../img/video-one-bg.jpg') center center / cover no-repeat; */
  background-attachment: scroll !important; /* don't use fixed (causes banding) */
  padding: 100px 0;
  color: #fff;
   margin-top: 0;
  /* overflow: visible !important; */

  background-size: cover;
  background-position: center center !important;
  background-repeat: no-repeat;



}

/* dark overlay layer (keeps HTML simple — content sits above) */
.extra-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.extra-services .container {
  position: relative;
  z-index: 2; /* content above overlay */
}

/* left heading */
.extra-services__left .section-tagline {
  color: var(--mellis-base);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.extra-services__left .section-title {
  font-family: var(--mellis-font-two);
  font-size: 44px;
  line-height: 1.12;
  color: #fff;
  margin: 0;
}

/* checklist on right: two columns */
.extra-services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  color: #eee;
  font-size: 15px;
}

/* add a check pseudo-element so you don't rely on external icons */
.extra-services__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.extra-services__list li::before{
  content: '✔';
  color: var(--mellis-base);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  display:inline-block;
  width:18px;
  text-align:center;
}

/* STATS SECTION */
.stats-section {
  position: relative;
  background: url('../adminspa/img/counter-one-bg.jpg') center center / cover no-repeat;
  background-attachment: scroll;
  padding: 60px 0;
}

/* light wash so icons and text show */
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.95); /* light, almost white wash like the design */
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

/* stat box layout */
.stats-box {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  color: var(--mellis-black);
}

/* constrain icon images so they don't blow up */
.stats-box img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

/* stat text */
.stats-content h3 {
  font-size: 36px;
  margin: 0;
  font-weight: 700;
}
.stats-content p {
  margin: 3px 0 0;
  font-size: 14px;
  color: #777;
}

/* responsive */
@media (max-width: 991px) {
  .stats-box img { width: 56px; height: 56px; }
  .stats-content h3 { font-size: 28px; }
}
.extra-services::before {
  background: rgba(0,0,0,0.65);
}

/* 2. Text size & width fix */
.extra-services__left .section-title {
  max-width: 600px;
  line-height: 1.1;
  font-size: 48px;
}

/* 3. Better font */
h1, h2, h3, .section-title {
  font-family: 'Playfair Display', serif;
}

.stats-section .row {
    display: flex; /* Activate flexbox */
    flex-wrap: nowrap; /* CRUCIAL: Prevents wrapping to the next line */
    justify-content: space-around; /* Distributes items evenly with space around them */
    align-items: center;
    gap: 0; /* Remove the unnecessary gap here, let space-around handle it */
}
.stats-box {
  padding: 10px 0;
  justify-content: center;
}
.stats-section .col-lg-3 {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0 !important; /* Override the mb-4 utility */
    max-width: none; /* Allows flex to take control */
    flex-basis: 25%; /* Force all four items to be exactly 25% wide */
}
/* === FINAL HOW IT WORKS SECTION === */
.how-it-works {
  position: relative;
  padding: 120px 0;
  background-color: white;
  text-align: center;
}

/* ✅ Timeline line */

/* ✅ Circles */
.how-it-works .circle-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid #f1c1bb; /* single clean ring */
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin: 0 auto 0;
}

/* ✅ Circle image */
.how-it-works .circle-wrapper img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* .how-it-works .circle-wrapper:hover img {
  transform: scale(1.07);
} */

/* ✅ Step badges (01, 02, 03) */
.how-it-works .number-badge {
  position: absolute;
  top: -15px;
  /* right: 0; */
  left: 50%;
  width: 55px;
  transform: translateX(30px);
  /* transform: translate(30px, -20px); */
  height: 55px;
  border-radius: 50%;
  background-color: #d58b85;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  box-shadow: 0 0 0 5px #fff7f7; /* clean detached border look */
}

/* ✅ Flex layout for the three steps */
.how-it-works .steps-row {
  position: relative;
  display: flex;
  justify-content: center; /* center all steps together */
  align-items: flex-start;
  gap: 150px; /* decrease this to control spacing (try 60, 50, etc.) */
  margin-top: 60px;
  flex-wrap: nowrap;
}

.how-it-works .step {
  position: relative;}

/* ✅ Responsive */
@media (max-width: 991px) {
  .how-it-works .timeline-line { display: none; }
  .how-it-works .steps-row { flex-direction: column; gap: 2rem; }
  .how-it-works .number-badge { top: -15px; right: -15px; }
}


.how-it-works .timeline-line {
  position: absolute;
  /* top: 50%; */
  /* left: -1%; */
  width: 100%;
  height: 3px;
  background-color: #e2a7a2;
  /* transform: translateY(-50%); */
  z-index: 1;
  border-radius: 2px;
  top: 115px;
   left: 50%;
  transform: translateX(-50%);
}

/* ✅ Dots at both ends */
.how-it-works .timeline-line::before,
.how-it-works .timeline-line::after {
  content: '';
  position: absolute;
  /* top: 50%; */
  width: 12px;
  height: 12px;
  background: #e2a7a2;
  border-radius: 50%;
  transform: translateY(-50%);
  top: 50%;
}
.how-it-works .timeline-line::before { left: 0; }
.how-it-works .timeline-line::after { right: 0; }
/* ✅ Targeting the <h5> titles (Meeting, Treatment, Finalizing) */
.how-it-works .step h5 {
    font-size: 25px; /* Adjust this value to make the text bigger (e.g., 20px or 22px) */
    font-weight: 500; /* Make it bold for emphasis */
    margin-top: 15px; /* Add vertical space above the title (between circle and text) */
    margin-bottom: 5px; /* Add space below the title (between title and paragraph) */
    color: #333; /* Optional: Set a darker color */
}
.how-it-works .section-header p {
    color: #d58b85; /* Using a darker pink for the small text */
    font-weight: 700;
    margin-bottom: 5px;
}
/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0 110px;
  z-index: 1;
}

.testimonial-one__bg-box {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 570px;
  background-color: var(--mellis-extra);
  z-index: -1;
}

.testimonial-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.testimonial-one__top {
  position: relative;
  display: block;
}

.testimonial-one__left {
  position: relative;
  display: block;
}

.testimonial-one__right {
  position: relative;
  display: block;
  margin-top: 12px;
  margin-left: 70px;
}

.testimonial-one__bottom {
  position: relative;
  display: block;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 60px 60px 60px;
}

.testimonial-one__icon-quote {
  position: absolute;
  top: 15px; /* move higher */
  right: 30px; /* tighter to corner */
  opacity: 0.15; /* subtle faded effect */
  z-index: 1;
}
.testimonial-one__icon-quote img {
  width: 70px; /* smaller quote */
  height: 70px;
  filter: brightness(0) saturate(100%) invert(86%) sepia(14%) saturate(252%) hue-rotate(314deg) brightness(98%) contrast(90%);
}



.testimonial-one__single-inner {
  position: relative;
  display: block;
}

.testimonial-one__rating {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-one__rating span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--mellis-base);
}

.testimonial-one__rating span+span {
  margin-left: 5px;
}

.testimonial-one__text-2 {
  font-size: 18px;
  line-height: 34px;
  margin-top: 19px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--mellis-bdr-color);
  margin-bottom: 30px;
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: center;
    /* align-items: center; */
  gap: 15px;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
  border-radius: 50%;
}

.testimonial-one__client-img img {
  width: 70px !important;      /* make a bit larger if you want */
  height: 70px !important;       /* equal height = perfect circle */
  border-radius: 50% !important;   /* ensures full circle */
  object-fit: cover;    /* crop perfectly inside circle */
  display: block;
}
.testimonial-one__content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.testimonial-one__client-name {
  font-size: 18px;
  line-height: 25px;
}

.testimonial-one__client-sub-title {
  font-size: 12px;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}




/* footer */
.site-footer {
  position: relative;
  display: block;
  background-color: var(--mellis-black);
  z-index: 1;
  overflow: hidden;

}

.site-footer__shape-1 {
  position: absolute;
  bottom: -30px;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: .10;
  z-index: -1;
}


.site-footer__shape-1 img {
  width: auto;
}

.site-footer__shape-2 {
  position: absolute;
  bottom: 0;
  right: -30px;
  mix-blend-mode: luminosity;
  opacity: .10;
  z-index: -1;
}

.site-footer__shape-2 img {
  width: auto;
}

.site-footer__top {
  position: relative;
  display: block;
  padding-top: 100px;
  padding-bottom: 90px;
}

.footer-widget__contact-box {
  position: relative;
  display: block;
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.footer-widget__contact a {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--mellis-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #de968d;
}

.footer-widget__contact a+a {
  margin-top: 6px;
}

.footer-widget__contact a:hover {
  color: var(--mellis-white);
}

.footer-widget__contact-form-box {
  position: relative;
  display: block;
}

.footer-widget__contact-form.mc-form {
  position: relative;
  display: block;
}

.footer-widget__contact-form-input-box {
  position: relative;
  display: block;
}

.footer-widget__contact-form-input-box input[type="email"] {
  height: 58px;
  background-color: #1e1c20;
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #a6a2ac;
  padding-left: 30px;
  padding-right: 55px;
}

.footer-widget__newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45px;
  border: none;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}


.footer-widget__links {
  position: relative;
  display: block;
  margin-left: 70px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 17px;
}

.footer-widget__title {
  font-size: 18px;
  color: var(--mellis-white);
  line-height: 18px;
}

.footer-widget__links-list {
  position: relative;
  display: block;
}

.footer-widget__links-list li {
  position: relative;
  display: block;
}

.footer-widget__links-list li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #a6a2ac;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.footer-widget__links-list li:hover a {
  color: var(--mellis-base);
}

.footer-widget__timing {
  position: relative;
  display: block;
  margin-left: 70px;
  margin-right: -10px;
}

.footer-widget__timing-list {
  position: relative;
  display: block;
}

.footer-widget__timing-list li {
  font-size: 14px;
  color: #a6a2ac;
}

.footer-widget__social-box {
  position: relative;
  display: block;
  text-align: right;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 23px;
}

.site-footer__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--mellis-white);
  background-color: #1e1c20;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--mellis-base);
  background-color: var(--mellis-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--mellis-white);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a+a {
  margin-left: 10px;
}

.footer-widget__social-box p {
  font-size: 14px;
  color: #a6a2ac;
  font-family: var(--mellis-font-two);
  font-weight: 400;
}


.site-footer__bottom {
  position: relative;
  display: block;
  z-index: 1;
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 32px 0;
  box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-text {
  font-size: 14px;
  color: #a6a2ac;
}

.site-footer__bottom-text a {
  color: #a6a2ac;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--mellis-base);
}

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer__bottom-menu li:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -20px;
  width: 1px;
  background-color: #a6a2ac;
  transform: rotate(15deg);
}

.site-footer__bottom-menu li:last-child:before {
  display: none;
}

.site-footer__bottom-menu li+li {
  margin-left: 40px;
}

.site-footer__bottom-menu li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #a6a2ac;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
  color: var(--mellis-base);
}
.main-header {
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 991;
}

.main-header__top {
  position: relative;
  display: block;
  z-index: 1;
}

.main-header__top-wrapper {
  position: relative;
  display: block;
}

.main-header__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--mellis-extra);
  padding:10px 60px;
  z-index: 1;
  min-height:50px;
  height:auto;
}

.main-header__top-left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header__contact-list {
  position: relative;
  display: flex;
  align-items: center;
  padding:  0;
   gap: 25px;
  margin: 0;
  list-style: none;
}

.main-header__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .main-header__contact-list li+li {
  margin-left: 30px;
} */

.main-header__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width:25px;
  background-color: var(--mellis-base);
  border-radius: 50%;
  font-size: 10px;
  color: var(--mellis-white);
}
.main-header__contact-list li .text {
  display: flex;
  align-items: center;
  position: relative;
  top: 2px; /* move text slightly down */
}

.main-header__contact-list li .text p {
  margin: 0;
  line-height: 1;
}

.main-header__contact-list li .text a {
  display: inline-block;
  vertical-align: middle;
  color: #555;
  font-size: 14px;
  text-decoration: none;
}


.main-header__contact-list li .text {
  margin-left: 10px;
}

.main-header__contact-list li .text p {
  font-size: 14px;
  font-weight: 500;
}

.main-header__contact-list li .text p a {
  color: var(--mellis-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__contact-list li .text p a:hover {
  color: var(--mellis-base);
}

.main-header__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;

}

.main-header__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--mellis-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__social a:hover {
  color: var(--mellis-base);
}

.main-header__social a+a {
  margin-left: 25px;
}

.main-header__btn-box {
 
   display: flex;
  align-items: center;
}


.main-header__btn {
  border: 1px solid #d8a5a3;
  background-color: transparent;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  line-height: 1.2;
}


.main-menu {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  padding: 0px 0px 0px;
  z-index: 1;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 60px 0;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
  z-index: 1;
}

.main-menu__left {
  position: relative;
  display: block;
}

.main-menu__logo {
  position: relative;
  display: block;
}

.main-menu__main-menu-box {
  position: relative;
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 38px 0;
}

.main-menu__search-cart-box:before {
  content: "";
  position: absolute;
  top: 27px;
  bottom: 27px;
  left: -30px;
  width: 1px;
  background-color: #f0e8e8;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--mellis-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--mellis-base);
}

.main-menu__cart-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--mellis-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart:hover {
  color: var(--mellis-base);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 55px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--mellis-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--mellis-black);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  color: var(--mellis-black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--mellis-base);
  color: var(--mellis-white);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}


.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--mellis-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--mellis-base);
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--mellis-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--mellis-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--mellis-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--mellis-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--mellis-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--mellis-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--mellis-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--mellis-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--mellis-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--mellis-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--mellis-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--mellis-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--mellis-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--mellis-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--mellis-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}
.thm-btn .main-header__btn {
background-color: #de968d;





}
/* Reset default browser spacing */
html, body {
    margin: 0;
    padding: 0;
}
/* 1. Initial State for the Header Container */
.main-header {
    /* Ensure the header takes up its space normally */
    position: relative;
    width: 100%;
    top:0;
    z-index: 999; /* Higher than content, lower than the fixed nav */
}

/* 2. Top Bar - Keeps it in the normal document flow */
.main-header__top {
    position: relative;
    top:0;
     background-color: #fdeeee;
  border-bottom: 1px solid #f3dada;
  padding: 0;
    /* Other styles for appearance (e.g., background-color, padding) */
}

/* 3. Navigation Menu - Initial State */
.main-menu {
    /* Start in the normal flow, right after the top bar */
    position: relative; 
    width: 100%;
    top:0;
    /* Other styles for appearance (e.g., background-color: #fff, box-shadow) */
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 10; /* Lower than the fixed state */
}

/* 4. CSS for the Fixed State (Applied via JS) */

/* When the 'main-header' gets the 'fixed-header' class: */
.main-header.fixed-header .main-menu {
    position: fixed; /* This makes the nav fixed */
    top: 0;
    left: 0;
    z-index: 9999; /* Make sure it stays on top of everything when fixed */
    /* width: 100%; is already defined on .main-menu */
}


body.nav-is-fixed {
    padding-top: 100px; /* Adjust to match the exact height of your .main-menu */
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 135px 0 135px;
  background-color: var(--mellis-black);
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .40;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
}

.page-header__inner h2 {
  font-size: 40px;
  color: var(--mellis-white);
  line-height: 50px;
  margin-top: 15px;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--mellis-white);
  font-size: 14px;
  font-weight: 600;
  opacity: .60;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 8px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--mellis-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--mellis-base);
  opacity: 1;
}



/*--------------------------------------------------------------
# Gallery Two
--------------------------------------------------------------*/
.gallery-page {
  position: relative;
  display: block;
  padding: 120px 0 110px;
}

.gallery-page .row {
  --bs-gutter-x: 10px;
}

.gallery-page .container {
  max-width: 1472px;
}

.gallery-page__single {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.gallery-page__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-page__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -2px;
  left: 0;
  right: 0;
  background-color: var(--mellis-base);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
}

.gallery-page__single:hover .gallery-page__img:before {
  opacity: .90;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.gallery-page__img img {
  width: 100%;
}

.gallery-page__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.gallery-page__icon a {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--mellis-white);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}


.gallery-page__single:hover .gallery-page__icon a {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 500ms;
  opacity: 1;
}

.gallery-page__icon a:hover {
  color: var(--mellis-black);
}
.main-menu__logo img {
  height: 60px; /* adjust as you wish */
  width: auto;
  object-fit: contain;
}
/* .main-header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  background: #f5eaea; 
  padding: 6px 60px; 
  font-size: 15px;
    height: 48px;
} */

.main-header__top-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--mellis-extra);
  padding: 10px 60px;
  gap: 15px;       /* makes spacing natural when wrapping */
  min-height: 50px;
}
.main-header__top-left,
.main-header__top-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;   /* spacing between items */
}


.main-header__contact-list {
  display: flex;
  align-items: center;
  gap: 25px; /* spacing between email and phone */
  margin: 0;
  padding: 0;
  list-style: none;
    align-items: center;
}

.main-header__contact-list li .text a {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
}

.main-header__contact-list a {
  color: #444;
  text-decoration: none;
}

.main-header__top-right {
  display: flex;
  align-items: center;
  gap: 20px; /* space between icons and button */
}

.main-header__social a {
  color: #444;
  font-size: 16px;
  margin-right: 12px;
  transition: all 0.3s ease;
}


.main-header__btn-box .thm-btn {
  background: transparent;
  border: 1px solid #d49f9f;
  color: #d49f9f;
  padding: 6px 18px;
  /* border-radius: 25px; */
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main-header__btn-box .thm-btn:hover {
  background: #d49f9f;
  color: #fff;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: #27252a;
}

.main-slider .container {
  position: relative;
  padding-top: 180px;
  padding-bottom: 180px;
  z-index: 30;
}

.image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--mellis-black-rgb), .60);
  z-index: -1;
}



.main-slider__icon {
  position: relative;
  display: block;
  margin-bottom: 23px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__icon img {
  width: auto;
}

.main-slider__sub-title {
  font-size: 20px;
  color: var(--mellis-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__title {
  position: relative;
  font-size: 130px;
  color: var(--mellis-white);
  font-weight: 400;
  line-height: 130px;
  font-family: var(--mellis-font-three);
  margin-top: 26px;
  margin-bottom: 27px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn:before {
  background-color: var(--mellis-white);
}

.main-slider__btn:hover {
  color: var(--mellis-base);
}

.main-slider .swiper-slide-active .main-slider__title,
.main-slider .swiper-slide-active .main-slider__sub-title,
.main-slider .swiper-slide-active .main-slider__btn-box,
.main-slider .swiper-slide-active .main-slider__icon {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}


#main-slider-pagination {
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 70px;
  max-width: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  line-height: 0;
  height: 0;
}

#main-slider-pagination .swiper-pagination-bullet {
  margin: 0;
}

#main-slider-pagination .swiper-pagination-bullet {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(var(--mellis-white-rgb), .20);
  border: 0;
  opacity: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 5px;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-left: 5px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(var(--mellis-white-rgb), 1);
}




.main-slider__nav {
  position: absolute;
  top: 37%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  padding: 0 50px;
  height: 0;
  line-height: 0;
}


.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: rgba(var(--mellis-white-rgb), 1);
  background-color: rgba(32, 23, 51, .40);
  border: 0;
  border-radius: 2px;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 27px 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: rgba(var(--mellis-white-rgb), 1);
  background-color: rgba(32, 23, 51, .70);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  margin-bottom: 10px;
}

.main-slider__nav .swiper-button-prev i {
  position: relative;
  display: inline-block;
}

/* welome  */
.welcome-one {
  position: relative;
  display: block;
  padding: 190px 0 50px;
  z-index: 1;
}

.welcome-one__left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.welcome-one__img-box {
  position: relative;
  display: block;
}

.welcome-one__img {
  position: relative;
  display: block;
  z-index: 1;
}

.welcome-one__img::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  bottom: -70px;
  left: 70px;
  background-color: var(--mellis-extra);
  z-index: -1;
}

.welcome-one__img img {
  width: 100%;
}

.welcome-one__shape-1 {
  position: absolute;
  top: -57px;
  left: -93px;
  z-index: -1;
}

.welcome-one__shape-1 img {
  width: auto;
}

.welcome-one__right {
  position: relative;
  display: block;
  margin-left: 70px;
  /* top: 50px; */

}

.welcome-one__right .section-title {
  margin-bottom: 38px;
}

.welcome-one__points {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: -8px;
  margin-top: 43px;
}

.welcome-one__points li {
  position: relative;
  display: flex;
}

.welcome-one__points li+li {
  margin-left: 31px;
}

.welcome-one__points li .icon {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.welcome-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--mellis-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.welcome-one__points li:hover .icon span {
  transform: scale(.9);
}

.welcome-one__points li .text {
  position: relative;
  display: block;
}

.welcome-one__points li .text h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.welcome-one__btn-box {
  position: relative;
  display: block;
  margin-top: 41px;
}

/* --- Fix Swiper slider responsiveness --- */

/* Prevent any horizontal scroll */
body, html {
  overflow-x: hidden;
}

/* Optional: make sure the slider section itself doesn’t add spacing */
.main-slider {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .main-slider {
    height: 70vh; /* Tablets */
  }
}

@media (max-width: 768px) {
  .main-slider {
    height: 55vh; /* Small tablets */
  }
}

@media (max-width: 576px) {
  .main-slider {
    height: 40vh; /* Mobile phones */
  }
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--mellis-font);
  color: var(--mellis-gray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--mellis-base);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--mellis-font-two);
  font-weight: 400;
  color: var(--mellis-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--mellis-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -9px;
  margin-bottom: 51px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: var(--mellis-base);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title__title {
  margin: 0;
  color: var(--mellis-black);
  font-size: 44px;
  line-height: 49px;
  margin-top: 5px;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 12px;
  color: var(--mellis-white);
  text-transform: uppercase;
  background-color: var(--mellis-base);
  padding: 14px 49px 14px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  letter-spacing: 0.2em;
  z-index: 1;
}

.thm-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--mellis-black);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: -1;
}

.thm-btn:hover:before {
  transform: translateY(0);
  width: 100%;
}

.thm-btn:hover {
  color: var(--mellis-white);
  z-index: 1;
}

.thm-btn-two {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 500;
  font-size: 18px;
  color: var(--mellis-white);
  background-color: var(--mellis-base);
  border-radius: 3px;
  padding: 17px 61px 16px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn-two:after {
  position: absolute;
  content: "";
  top: 0;
  left: -202px;
  right: -1px;
  bottom: -10px;
  height: 100px;
  background-color: var(--mellis-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform: rotate(109deg);
  z-index: -1;
}

.thm-btn-two:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.thm-btn-two:hover {
  color: var(--mellis-base);
}

.thm-btn-three {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--mellis-white);
  font-weight: 400;
  background-color: var(--mellis-base);
  padding: 11.5px 35px 11.5px;
  border-radius: 2px;
  overflow: hidden;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  z-index: 1;
}

.thm-btn-three:hover {
  color: var(--mellis-black);
}

.thm-btn-three:after {
  position: absolute;
  bottom: -17px;
  right: -28px;
  height: 47px;
  width: 47px;
  border-radius: 50%;
  background-color: var(--mellis-base);
  content: "";
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  z-index: -1;
}

.thm-btn-three:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  bottom: 0;
  right: 0;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--mellis-base);
  color: var(--mellis-white);
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--mellis-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--mellis-base);
  color: var(--mellis-white);
  cursor: pointer;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}
/* ===== Defensive slider fix — paste this at the end of your stylesheet ===== */

/* Make the whole swiper + slides fill a fixed visual block */
.main-slider,
.thm-swiper__slider,
.swiper-container,
.swiper-wrapper,
.swiper-slide {
  width: 100% !important;
  height: 80vh !important;   /* change 80vh to 90vh / 70vh if you prefer */
  min-height: 320px !important;
  overflow: hidden !important;
}

/* Image-layer must absolutely fill the slide and show nicely */
.image-layer {
  position: absolute !important;
  inset: 0 !important;                  /* top:0; right:0; bottom:0; left:0; */
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  z-index: 1 !important;
  transform: none !important;           /* remove unwanted transforms that affect layout */
}

/* Dark overlay above image but below content */
.image-layer::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.45) !important; /* adjust darkness */
  z-index: 2 !important;
}

/* Ensure the slide content is positioned above the overlay and centered */
.main-slider__content {
  position: absolute !important;
  top: 60% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3 !important;
  width: 100% !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: auto !important;
}
/* .main-slider__content {
  position: relative;
  display: block;
  text-align: center;
} */
/* Make sure Swiper pagination/nav remain visible */
#main-slider-pagination,
.main-slider__nav,
.swiper-button-next,
.swiper-button-prev {
  z-index: 5 !important;
}

/* Prevent any horizontal scrolling introduced by slider */
html, body {
  overflow-x: hidden !important;
}

/* Responsive tweaks: adjust visual height on smaller screens */
@media (max-width: 992px) {
  .main-slider,
  .swiper-slide { height: 70vh !important; }
}
@media (max-width: 768px) {
  .main-slider,
  .swiper-slide { height: 55vh !important; min-height: 260px !important; }
}
@media (max-width: 576px) {
  .main-slider,
  .swiper-slide { height: 42vh !important; min-height: 200px !important; }
}



/* === Welcome One Icons === */
.welcome-one__points .icon i {
  font-size: 20px;
  color: var(--mellis-base); /* uses your pink from root vars */
  transition: all 0.3s ease;
  display: inline-block;
}

/* Optional hover effect for a bit of movement */
.welcome-one__points li:hover .icon i {
  color: #eaa29b; /* slightly lighter pink on hover */
  transform: scale(1.1);
}
/* Make sure the section starts at the very top */


/* If your navbar is fixed, offset body once, not the section */
header, .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

body {
  padding-top: 0 !important; /* prevent Bootstrap from pushing content */
}
/* If navbar is fixed-top (Bootstrap) */
.navbar.fixed-top + * {
  margin-top: 0; /* prevents double space */
}

/* === MELLIS CONTACT FORM RECOLOR === */
.contact-form {
  background-color: var(--mellis-extra, #fcf5f5) !important;
  border: 1px solid var(--mellis-bdr-color, #f0e8e8);
  font-family: var(--mellis-font, 'Manrope', sans-serif);
  border-radius: 12px;
}

.contact-form h6 {
  background-color: var(--mellis-base, #de968d) !important;
  color: var(--mellis-white, #ffffff) !important;
  border-radius: 4px;
}

.contact-form h1 {
  font-family: var(--mellis-font-two, 'Libre Baskerville', serif);
  color: var(--mellis-black, #27252a);
  font-weight: 600;
}

/* Input and textarea fields */
.contact-form .form-control {
  border: 1px solid var(--mellis-bdr-color, #f0e8e8) !important;
  background-color: var(--mellis-white, #ffffff);
  color: var(--mellis-black, #27252a);
  border-radius: 8px;
  box-shadow: none !important;
}

.contact-form .form-control:focus {
  border-color: var(--mellis-base, #de968d) !important;
  box-shadow: 0 0 0 0.15rem rgba(222, 150, 141, 0.25);
}

/* Button */
.contact-form button.btn {
  background-color: var(--mellis-base, #de968d) !important;
  border: none;
  color: var(--mellis-white, #ffffff) !important;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-form button.btn:hover {
  background-color: #c87f77 !important;
}

/* Fix spacing */
.contact-form .form-row {
  margin-bottom: 1rem;
}

.contact-form textarea {
  resize: none;
}
/* Reduce space between header/navbar and contact section */
.contact-section {
  margin-top: 0 !important;
  padding-top: 20px !important; /* adjust as needed */
}

/* If the header adds extra space below itself */
header, .navbar {
  margin-bottom: 0 !important;
}
